home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-03-21 | 546 b | 23 lines |
- # makefile for mgr c-interface library (16 bit)
- MINTHOME=/net/acae127/home/bammi/atari/mint/mintlib
- CROSSDIR = /net/acae127/home/bammi/atari/cross-gcc
- CROSSBIN = $(CROSSDIR)/bin
- CROSSLIB = $(CROSSDIR)/lib
- LIB = $(CROSSLIB)
- CC=$(CROSSBIN)/cgcc
- AR=$(CROSSBIN)/car
- HOSTCC = cc
- HOSTCCFLAGS = -O -I. -Iatari -I../lib
- CFLAGS= -mshort -mint -O -nostdinc -I$(MINTHOME)/include -I. \
- -fomit-frame-pointer -fcombine-regs
-
- # library targets
- MGRLIB= mgr16.olb
- MGRLIB020=mgr16020.olb
-
- # the stuff to make
- ALL= $(MGRLIB)
- ALL020 = $(MGRLIB020)
-
- include mincl
-